home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / lang / mc302 / misc / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-18  |  163 b   |  12 lines

  1. /*
  2.  * Standard 'C' demo... Say hello to the world
  3.  *
  4.  * Compile command: cc hello
  5.  */
  6. #include \mc\stdio.h
  7.  
  8. main()
  9. {
  10.     fputs("Hello world\n", stdout);
  11. }
  12.